home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
DESQVIEW
/
MDOS401.ARJ
/
DEMO2.C
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-02
|
470b
|
21 lines
/* demo program for MultiDos Plus R4.00 distribution */
/* please note that this program is only used to show */
/* how to load and execute programs. The display of */
/* this program only indicates that it is running and */
/* the .EXE name to identify the display. */
#include <stdio.h>
int main(argcnt, arglst)
int argcnt;
char *arglst[];
{
int i;
i = 0;
for (;;++i)
{
printf("My name is %s and my count is %d\r\n", arglst[0], i);
}
}